home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
GETCHAR.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
256b
|
9 lines
/*
** get a character from "stdin"
*/
extern int *stdin, fgetc();
getchar() {
return fgetc(stdin);
}